home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / INFO / DOSTRAIN.ZIP / STRIP.DOC < prev    next >
Text File  |  1986-02-07  |  5KB  |  133 lines

  1.  
  2.  
  3.  
  4.                      TEXT FILE HIGH-BIT STRIP ROUTINE
  5.                                 Version 2.1
  6.  
  7.  
  8.      ***********************
  9.      SPECIAL NOTE:
  10.        If you have Version 1.0 of STRIP, note the difference in the 
  11.      use of switches (they are now appended to the filespecs), the 
  12.      fact that /d has been added, and that the switches now turn off 
  13.      the options rather than turning on the option.
  14.      ***********************
  15.  
  16.      PURPOSE:
  17.        WordStar and other text editing software can use the eigth 
  18.      bit for special purposes that cause the text file to print to 
  19.      the screen in an unacceptable manner.  This program strips off 
  20.      the high bit so that one can use the power of full text 
  21.      editing and still have a usable document for teleprocessing to 
  22.      CIS.
  23.  
  24.  
  25.      HOW:
  26.        Either enter the name STRIP at the DOS prompt and answer the 
  27.      questions or enter some or all of the information at the command 
  28.      line:
  29.  
  30.           STRIP [source file[/s/d] [destination file[/s/d]]]
  31.  
  32.           where: 
  33.                 1) the source file must be a text file.  If omitted, 
  34.                    the program will prompt for both the source and 
  35.                    destination files.
  36.                 2) the destination file cannot be specified unless the
  37.                    source is given.  If omitted, the program will 
  38.                    prompt for it.
  39.                 3) /s is a switch that tells the program to suspend 
  40.                    the listing of statistics.  The default is ON 
  41.                    meaning that statistics will be given.  Because 
  42.                    this option slows the process somewhat, it is 
  43.                    suggested that statistics not be shown on long 
  44.                    files unless required.
  45.                 4) /d is a switch that tells the program to suspend 
  46.                    the display of both the original and new document 
  47.                    files.  The default is ON meaning that the 
  48.                    documents will be displayed.   Because this option 
  49.                    slows the process somewhat, it is suggested that 
  50.                    the switch be set, turning off the display, on long 
  51.                    files.
  52.                 5) File names support disk name, path, and file name.
  53.                 6) Switches, if used, MUST be appended to either or 
  54.                    both filespecs and either on the command line or 
  55.                    during the interactive specification.  They will 
  56.                    not cancel, so redundancies do not matter.
  57.  
  58.  
  59.  
  60.  
  61.                                      1
  62.  
  63.  
  64.  
  65.  
  66.  
  67.      STRIP v2.1
  68.  
  69.  
  70.      FEATURES:
  71.        1) WINDOWS allow you to view both the source and destination 
  72.           files as they are read and created, both at the same time.
  73.        2) The top line of the screen displays the two files selected 
  74.           and displays the direction of flow.
  75.        3) Statistics gives the current text line being read, the 
  76.           character in the line being read, and the byte count of the 
  77.           source file.
  78.  
  79.  
  80.      EQUIPMENT:
  81.        STRIP.PAS is written in Turbo Pascal.  It should work on any 
  82.      IBM or compatible with PC/MS DOS 2.0 or higher.   
  83.  
  84.  
  85.      FILES:
  86.        The following are included:
  87.            1. STRIP.COM is the compiled ready to run program.
  88.            2. STRIP.DOC is what you are reading now.
  89.            3. STRIP.PAS is the source code.
  90.            4. STRIP.TST is the DOC file in WS format.  Use this as a 
  91.               sample to test STRIP.  WARNING: do not specify STRIP.DOC 
  92.               unless you are sure that you wish to overwrite the file 
  93.               provided here!
  94.  
  95.      RULES FOR DISTRIBUTION:
  96.        None, however, altered programs should not be distributed.  Any 
  97.      suggestions for improvements or changes will be considered.  
  98.      Please report any bugs to the author.  Use E-MAIL if you prefer.
  99.  
  100.      AUTHOR:
  101.        Russell J. Wintner, Compuserve [74736,2255]
  102.  
  103.      VERSIONS:
  104.  
  105.      V1.0   January 27, 1986
  106.         First release.
  107.  
  108.      V2.0   February 4, 1986
  109.         1) Add /D switch to suppress display of document
  110.         2) Switch /S now suppresses statistics instead of the reverse.
  111.         3) The default state is display ON | stats ON.
  112.         4) Specifying /D/S effectively speeds up execution.  Even /S             
  113.            is a dramatic improvement over V1.0.
  114.         5) Switched may now be specified affixed to either filespec, 
  115.            on the command line, by prompt, or both.
  116.  
  117.      V2.1   February 7, 1986
  118.         1) Correct version number on screen display.
  119.         2) Correct statistics (line and column were reporting 2 
  120.            times actual).
  121.  
  122.      ---end.
  123.  
  124.  
  125.  
  126.  
  127.                                      2
  128.  
  129.  
  130.  
  131.  
  132.  
  133.